projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff7b1a1
)
Fix typo in last change of FRAME_INTERNAL_BORDER_WIDTH
author
Martin Rudalics
<rudalics@gmx.at>
Tue, 26 Jan 2021 09:59:59 +0000
(10:59 +0100)
committer
Martin Rudalics
<rudalics@gmx.at>
Tue, 26 Jan 2021 09:59:59 +0000
(10:59 +0100)
* src/frame.h (FRAME_INTERNAL_BORDER_WIDTH): Fix typo in last
change.
src/frame.h
patch
|
blob
|
history
diff --git
a/src/frame.h
b/src/frame.h
index 7b3bf20a241f9edd51511d1f703f0946fa65556c..4bd01243f66240afb5830accef0558cff6ddf1f2 100644
(file)
--- a/
src/frame.h
+++ b/
src/frame.h
@@
-1455,7
+1455,7
@@
FRAME_INTERNAL_BORDER_WIDTH (struct frame *f)
: frame_dimension (f->internal_border_width))
: frame_dimension (f->internal_border_width);
#else
- return frame_dimension (f->internal_border_width)
+ return frame_dimension (f->internal_border_width)
;
#endif
}